HTMLify
app.js
Views: 11 | Author: huxn-webdev
1 2 3 4 5 6 7 8 9 10 11 12 13 | let toggler = document.getElementById("switch"); toggler.addEventListener("click", () => { // if (toggler.checked === true) { // document.body.style.backgroundColor = "black"; // } else { // document.body.style.backgroundColor = "white"; // } toggler.checked === true ? (document.body.style.backgroundColor = "black") : (document.body.style.backgroundColor = "white"); }); |